Skip to main content

List Destinations

Route

/v2/streaming/destinations

Description

List all streaming destinations configured for real-time data export. Destinations are HTTPS endpoints that receive streamed data from Cyberhaven.

Method

GET

Inputs

No input parameters required.

Output

FieldTypeDescription
destinationsarray[Destination]Array of destination objects

Destination Object Structure

FieldTypeDescription
idstringUnique destination identifier
namestringDestination name
descriptionstringDestination description
typestringDestination type (always "https")
formatstringData format (json, json_lines)
encodingstringEncoding type (none, gzip)
https_configobjectHTTPS configuration details
created_atstringCreation timestamp (ISO 8601)
updated_atstringLast update timestamp (ISO 8601)

Rate Limit

  • 60 requests per minute per API key
  • 5 concurrent requests per endpoint

Example Response

{
"destinations": [
{
"id": "dest-123",
"name": "SIEM Integration",
"description": "Stream to Splunk SIEM",
"type": "https",
"format": "json_lines",
"encoding": "gzip",
"https_config": {
"uri": "https://splunk.company.com/services/collector/event"
},
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
}
]
}